home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsjconf.h < prev    next >
C/C++ Source or Header  |  1995-01-18  |  2KB  |  60 lines

  1. /* Copyright (C) 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsjconf.h */
  20. /* jconfig.h file for Independent JPEG Group code */
  21. #include "std.h"
  22.  
  23. /* See IJG's jconfig.doc for the contents of this file. */
  24.  
  25. #ifdef __PROTOTYPES__
  26. #  define HAVE_PROTOTYPES
  27. #endif
  28.  
  29. #define HAVE_UNSIGNED_CHAR
  30. #define HAVE_UNSIGNED_SHORT
  31. #undef CHAR_IS_UNSIGNED
  32.  
  33. #ifdef __STDC__        /* is this right? */
  34. #  define HAVE_STDDEF_H
  35. #  define HAVE_STDLIB_H
  36. #endif
  37.  
  38. #undef NEED_BSD_STRINGS        /* WRONG */
  39. #undef NEED_SYS_TYPES_H        /* WRONG */
  40. #undef NEED_FAR_POINTERS
  41. #undef NEED_SHORT_EXTERNAL_NAMES
  42.  
  43. #undef INCOMPLETE_TYPES_BROKEN
  44.  
  45. /* The following is documented in jmemsys.h, not jconfig.doc. */
  46. #if arch_ints_are_short
  47. #  undef MAX_ALLOC_CHUNK
  48. #  define MAX_ALLOC_CHUNK 0xfff0
  49. #endif
  50.  
  51. #ifdef JPEG_INTERNALS
  52.  
  53. #if arch_arith_rshift == 0
  54. #  define RIGHT_SHIFT_IS_UNSIGNED
  55. #else
  56. #  undef RIGHT_SHIFT_IS_UNSIGNED
  57. #endif
  58.  
  59. #endif                /* JPEG_INTERNALS */
  60.